home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Sources / Object Models / AEAModelRoot.cc < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  704 b   |  40 lines

  1. /*    ===============
  2.  *    AEAModelRoot.cc
  3.  *    ===============
  4.  */
  5.  
  6. #include "AEADebugging.h"
  7.  
  8. #include <AEBuild.h>
  9.  
  10. #include "AEAModelRoot.hh"
  11. #include "AEATokenModel.hh"
  12. #include "AEADesc.hh"
  13.  
  14. void
  15. AEAModelRoot::GetKeyData(DescType inKeyForm, AEDesc &outAEDesc) const
  16. {
  17.     outAEDesc.descriptorType = typeNull;
  18.     outAEDesc.dataHandle = NULL;
  19. }
  20.  
  21. void
  22. AEAModelRoot::MakeToken(AEATokenModel *&outToken)
  23. {
  24.     outToken = new AEATokenModel(this);
  25. }
  26.  
  27. void
  28. AEAModelRoot::GetContainerObjSpec(AEDesc &outAEDesc) const
  29. {
  30.     outAEDesc.descriptorType = typeNull;
  31.     outAEDesc.dataHandle = NULL;
  32. }
  33.  
  34. void
  35. AEAModelRoot::MakeObjSpecifier(AEDesc &outAEDesc) const
  36. {
  37.     outAEDesc.descriptorType = typeNull;
  38.     outAEDesc.dataHandle = NULL;
  39. }
  40.